Objects Reference

class base_object

Definition

class base_object
{
  public:
  char name[32];
  char long_name[32];
  base_object *next_obj;

  base_object()
  { next_obj=0; name[0]=long_name[0]=0; };

  virtual ~base_object()
  { ; };
};

Data Members

Member Type Description
name char[] object small name
long_name char[] object long nome
next_obj base_object * next object in the linked list

Methods

None

Remarks

This class is the base class for all objects. Several other classes from the engine derive from this class. It holds the object name and pointer to next object in the specific object linked list.

See Also

bsp_object